home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Georgia Wildfire Prevention
/
Georgia Wildfire Prevention.iso
/
mac
/
media
/
dirs
/
BackUp
/
Login.dir
/
00007_Script_Movie Script
< prev
next >
Wrap
Text File
|
2002-10-11
|
803b
|
27 lines
global HotField
--Sends a message the the keys to preform function keyBoardDown or keyBoardUp, if the have it.
on keydown me
set TheKey = the keypressed
if (TheKey).chartonum = 13 or (TheKey).chartonum = 9 then --If the user presses RETURN (ENTER key on the PC) or TAB the next field goes active.
case (HotField) of
"First Name" : HotField = "Last Name"
"Last Name" : HotField = "Address"
"Address" : HotField = "City"
"City" : Hotfield = "State"
"State" : HotField = "Zip Code"
"Zip Code" : HotField = "Age"
"Age" : Hotfield = "First Name"
end case
end if
sendallsprites (#keyBoardDown)
sendallsprites (#FieldFiller, TheKey)
updatestage
end
--Loops back to the current frame.
on exitframe me
go the frame
end